From abc47d7faaf0fbea0389d84f199cd7ed0613872a Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 5 Jul 2015 15:45:49 -0700 Subject: [PATCH] gdkdisplay-x11: The leader window should be an input-only window This prevents it from creating a _NET_WM_USER_TIME_WINDOW, which can confuse mutter / other window managers, and also me, when debugging. --- gdk/x11/gdkdisplay-x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/x11/gdkdisplay-x11.c b/gdk/x11/gdkdisplay-x11.c index d4be951bb0..dd608fa8de 100644 --- a/gdk/x11/gdkdisplay-x11.c +++ b/gdk/x11/gdkdisplay-x11.c @@ -1433,7 +1433,7 @@ _gdk_x11_display_open (const gchar *display_name) gdk_event_init (display); attr.window_type = GDK_WINDOW_TOPLEVEL; - attr.wclass = GDK_INPUT_OUTPUT; + attr.wclass = GDK_INPUT_ONLY; attr.x = 10; attr.y = 10; attr.width = 10; -- 2.30.2